home *** CD-ROM | disk | FTP | other *** search
/ Precision Software Appli…tions Silver Collection 1 / Precision Software Applications Silver Collection Volume One (PSM) (1993).iso / tutor / dosguide.exe / HELPDOS.ZIP / VERIFY.HLP < prev    next >
Text File  |  1985-09-10  |  904b  |  27 lines

  1. -----------------------  VERIFY - Internal DOS Command  ------------------------
  2.  
  3. VERIFY verifies that data written to disk can be read without error.
  4.  
  5. FORMAT:   VERIFY [ON | OFF]
  6.  
  7. REMARKS:
  8.  
  9.    ON  - causes a verify operation following each write operation to disk.  This
  10.          ensures that the data just written can be read without error.  The
  11.          verification operation increases the time it takes to write data to
  12.          disk.  Verification stays in effect until a VERIFY OFF or SET VERIFY
  13.          System Call is done.
  14.  
  15.    OFF - turns off disk write verification.
  16.  
  17.    VERIFY with no parameter displays the current VERIFY state (on or off).
  18.  
  19.    This command does not ensure that the contents of the written data are
  20.    correct.  It only ensures that the data can be read without error.
  21.  
  22. EXAMPLE:
  23.  
  24. Turn on verification of data written to disk:
  25.  
  26.           VERIFY ON
  27.